home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / gentoo_GLSA-200410-22.nasl < prev    next >
Text File  |  2005-03-31  |  3KB  |  79 lines

  1. # This script was automatically generated from 
  2. #  http://www.gentoo.org/security/en/glsa/glsa-200410-22.xml
  3. # It is released under the Nessus Script Licence.
  4. # The messages are release under the Creative Commons - Attribution /
  5. # Share Alike license. See http://creativecommons.org/licenses/by-sa/2.0/
  6. #
  7. # Avisory is copyright 2001-2004 Gentoo Foundation, Inc.
  8. # GLSA2nasl Convertor is copyright 2004 Michel Arboi
  9.  
  10. if (! defined_func('bn_random')) exit(0);
  11.  
  12. if (description)
  13. {
  14.  script_id(15558);
  15.  script_version("$Revision: 1.1 $");
  16.  script_xref(name: "GLSA", value: "200410-22");
  17.  script_cve_id("CAN-2004-0835", "CAN-2004-0836", "CAN-2004-0837");
  18.  
  19.  desc = 'The remote host is affected by the vulnerability described in GLSA-200410-22
  20. (MySQL: Multiple vulnerabilities)
  21.  
  22.  
  23.     The following vulnerabilities were found and fixed in MySQL:
  24.     Oleksandr Byelkin found that ALTER TABLE ... RENAME checks CREATE/INSERT
  25.     rights of the old table instead of the new one (CAN-2004-0835). Another
  26.     privilege checking bug allowed users to grant rights on a database they had
  27.     no rights on.
  28.     Dean Ellis found a defect where multiple threads ALTERing the MERGE tables
  29.     to change the UNION could cause the server to crash (CAN-2004-0837).
  30.     Another crash was found in MATCH ... AGAINST() queries with missing closing
  31.     double quote.
  32.     Finally, a buffer overrun in the mysql_real_connect function was found by
  33.     Lukasz Wojtow (CAN-2004-0836).
  34.   
  35. Impact
  36.  
  37.     The privilege checking issues could be used by remote users to bypass their
  38.     rights on databases. The two crashes issues could be exploited by a remote
  39.     user to perform a Denial of Service attack on MySQL server. The buffer
  40.     overrun issue could also be exploited as a Denial of Service attack, and
  41.     may allow to execute arbitrary code with the rights of the MySQL daemon
  42.     (typically, the "mysql" user).
  43.   
  44. Workaround
  45.  
  46.     There is no known workaround at this time.
  47.   
  48. References:
  49.     http://cve.mitre.org/cgi-bin/cvename.cgi?name=CAN-2004-0835
  50.     http://cve.mitre.org/cgi-bin/cvename.cgi?name=CAN-2004-0836
  51.     http://cve.mitre.org/cgi-bin/cvename.cgi?name=CAN-2004-0837
  52.     http://bugs.mysql.com/bug.php?id=3933
  53.     http://bugs.mysql.com/bug.php?id=3870
  54.  
  55.  
  56. Solution: 
  57.     All MySQL users should upgrade to the latest version:
  58.     # emerge sync
  59.     # emerge -pv ">=dev-db/mysql-4.0.21"
  60.     # emerge ">=dev-db/mysql-4.0.21"
  61.   
  62.  
  63. Risk factor : High
  64. ';
  65.  script_description(english: desc);
  66.  script_copyright(english: "(C) 2004 Michel Arboi");
  67.  script_name(english: "[GLSA-200410-22] MySQL: Multiple vulnerabilities");
  68.  script_category(ACT_GATHER_INFO);
  69.  script_family(english: "Gentoo Local Security Checks");
  70.  script_dependencies("ssh_get_info.nasl");
  71.  script_require_keys('Host/Gentoo/qpkg-list');
  72.  script_summary(english: 'MySQL: Multiple vulnerabilities');
  73.  exit(0);
  74. }
  75.  
  76. include('qpkg.inc');
  77. if (qpkg_check(package: "dev-db/mysql", unaffected: make_list("ge 4.0.21"), vulnerable: make_list("lt 4.0.21")
  78. )) { security_hole(0); exit(0); }
  79.